Hello,
I am using the array sample and noticed that halting the motion in KmotionCNC (either F5 or button) somehow confuses the G54 offset.
For instance the example below. If I halt it inbetween and restart, KmotionCNC tells me that softlimits are violated and motion cant continue. What could be the reason for that?
I also noticed, that with such a subroutine sample the deceleration when hitting F5 (halt) is very slow; which is not the case if I use a non-subroutine gcode. In the latter case deceleration to stop is quite instant.
Kind regards,
Johannes
(Perform operations over an array)
(Define Array)
#1=2 (number of rows)
#2=8 (number of cols)
#3=59.0 (Grid size X)
#4=59.0 (Grid size Y)
#5=320.0073 (Start X)
#6=31.7562 (Start Y)
(Variables)
#7=0 (current row)
#8=0 (current column)
G21 G90
F1000
M98 P100 L[#2] (do all the columns)
(Define the XY Fixture Offset at the very end of pattern)
G10L2P1X[#5]Y[#6]
G00 X0Y0
M2
O100
M98 P200 L[#1] (do each row of the column)
#8 = [#8 + 1] (increment the column)
#7 = [0] (reset to row zero)
M99
O200
(Define the XY Fixture Offset)
G10L2P1X[#8 * #3 + #5]Y[#7 * #4 + #6]
G54 (Select the fixture)
M98 P300 (Do the pattern)
#7 = [#7 + 1] (increment the row)
M99
O300 (Do some pattern)
G00 Z5.0000
G00 X-4.5000 Y-4.5000
G00 Z0.5000
G01 Z-1.2000 F150
G00 Z5.0000
M99